How to implement the new trees: ancestors and decendants.php:

In all there are 13 files that are new or are to be replaced. Simply copy the content of the map phpmyfamily into your own map. If you only do this the new modules become visible when a visitor chooses the pedigree-link. If you also want a link in the "people" report, you have to create a link in the people.php.

To create a menu entrance in people.php: Find line 110, it looks like:

				else echo "<a href=\"pedigree.php?person=".$prow["person_id"]."\">".$strPedigree."</a></td>"; ?>

Replace this one line with with:

				else { 
				echo "<a href=\"pedigree.php?person=".$prow["person_id"]."\">".$strPedigree."</a>";
				}
    			echo " :: <a href=\"descendants.php?person=";
                if ($person != 0) {
		    	echo $person;
			    } else {
    			echo "00000";
	    		}
		    	echo "\" class=\"hd_link\">".$strDescendants."</a>";
			    echo " :: <a href=\"ancestors.php?person=";
                if ($person != 0) {
	    		echo $person;
		    	} else {
			    echo "00000";
    			}
	    		echo "\" class=\"hd_link\">".$strAncestors."</a></td>";
				?>

